home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / share.zip / DS_MOUSE.MSC < prev    next >
Text File  |  1986-03-02  |  5KB  |  147 lines

  1. ;
  2. ;       DS - Directory Scanner Pop-up Menu Configuration
  3. ;
  4. Comment         ("Configured for DS - Directory Scanner")
  5.  
  6. ;
  7. ;       Parameters
  8. ;
  9. Sensitivity     (30, 10)          ; (Xinc, Yinc)
  10. Hysteresis      (2, 2)          ; (AutoX, AutoY)
  11. ReverseVideo    (Yes)           ; Menu is displayed in reverse video
  12. FixedMenu       (No)            ; Menu is floating (centered on cursor)
  13. EnableBeep      (No)            ; Allows menu switching rather than beep
  14. ExpertMode      (Yes)
  15.  
  16. ;
  17. ;       Cursor Definitions
  18. ;
  19. ArrowKeys: Cursor
  20. (
  21.         Left   ([Left])
  22.         Right  ([Right])
  23.         Up     ([Up])
  24.         Down   ([Down])
  25. )
  26.  
  27. ;
  28. ;       Button Definitions
  29. ;
  30.  
  31. L_UP:      Button  (Keys([F1]))         ; Left button, Up 1 Directory
  32. M_DN:      Button  (Keys([F2]))         ; Middle button, Down 1 Directory
  33. R_CR:      Button  (Keys([Enter]))      ; Right button, Carriage Return
  34.  
  35. LM_DIR:    Button  (Menu(DIR))          ;
  36.                                 
  37. MR_FILE:   Button  (Menu(FILE))         ;
  38.  
  39. LR_COLOR:  Button  (Menu(COLOR))        ;
  40.  
  41. LMR_EXIT:  Button  (Menu(EXIT))         ;
  42.  
  43.  
  44. ;
  45. ;       Menu Definitions
  46. ;
  47. DIR: Menu
  48. (
  49.         Title   ("Directory")
  50.         Position(UpperLeft(33,1))
  51.         Item    ("           ",        )
  52.         Item    ("Root Dir",           Keys([F3]))
  53.         Item    ("Top Dir",            Keys([F5]))
  54.         Item    ("Up 10 Dir",          Keys([F1] [F1] [F1] [F1] [F1] [F1] [F1] [F1] [F1] [F1]))
  55.         Item    ("───────────",        )
  56.         Item    ("Dn 10 Dir",          Keys([F2] [F2] [F2] [F2] [F2] [F2] [F2] [F2] [F2] [F2]))
  57.         Item    ("Bottom Dir",         Keys([F6]))
  58.         Item    ("Last Dir",           Keys([F4]))
  59.         Item    ("───────────",        )
  60.         Item    ("Scroll Up ",         Keys([F7] [F7] [F7] [F7] [F7] [F7] [F7] [F7] [F7] [F7] ))
  61.         Item    ("Scroll Down",        Keys([F8] [F8] [F8] [F8] [F8] [F8] [F8] [F8] [F8] [F8] ))
  62. )
  63.  
  64. COLOR: Menu
  65. (
  66.         Title   ("Misc")
  67.         Position(LowerLeft(33,20))
  68.         Item    ("           ",         )
  69.         Item    ("Foreground",          Keys("+"))
  70.         Item    ("Border",              Keys([Backspace]))
  71.         Item    ("Background",          Keys("-"))
  72.         Item    ("           ",         )
  73.         Item    ("Help",                Keys("?"))
  74. )
  75.  
  76. FILE: Menu        
  77. (
  78.         Title   ("Commands")
  79.         Position(UpperLeft(1,1))
  80.         Item    ("             ",         Keys([Esc]))
  81.         Item    ("Copy Tagged",           Keys([a-c]))
  82.         Item    ("Delete Tagged",         Keys([a-d]))
  83.         Item    ("Move Tagged",           Keys("m"))
  84.         Item    ("Print Tagged",          Keys("p"))
  85.         Item    ("─────────────",         Keys([Esc]))
  86.         Item    ("List File",             Keys("l"))
  87.         Item    ("Edit File",             Keys("e"))
  88.         Item    ("Find File",             Keys("f"))
  89.         Item    ("Rename File",           Keys("r"))
  90.         Item    ("Execute File",          Keys("x"))
  91.         Item    ("─────────────",         Keys([Esc]))
  92.         Item    ("Enter Command",         Keys("c"))
  93.         Item    ("Drive Change",          Menu(DRIVES))
  94.         Item    ("Spawn DOS",             Keys("ccommand" [Enter]))
  95.         Item    ("─────────────",         Keys([Esc]))
  96.         Item    ("PgUp",                  Keys([PgUp]))
  97.         Item    ("PgDn",                  Keys([PgDn]))
  98.    ;    Item    ("             ",         Keys([Esc]))
  99. )
  100.  
  101. DRIVES:Menu
  102. (
  103.         Title   ("DRIVES")
  104.         Position(UpperLeft(1,1))
  105.         Item    (" ",          )
  106.         Item    ("A",          Keys("da" [Enter]))
  107.         Item    ("B",          Keys("db" [Enter]))
  108.         Item    ("C",          Keys("dc" [Enter]))
  109.         Item    ("D",          Keys("dd" [Enter]))
  110.    ;    Item    ("E",          Keys("de" [Enter]))
  111. )
  112.  
  113. EXIT: Menu
  114. (
  115.         Title   ("EXIT")
  116.         Position(LowerRight(78,20))
  117.         Item    ("                        ",     )
  118.         Item    ("Exit in Marked Directory",     Keys([F9]))
  119.         Item    ("                        ",     )
  120.         Item    ("Exit in Original Directory",   Keys([F10]))
  121.         Item    ("                        ",     )
  122. )
  123.  
  124.  
  125. ;
  126. ;       Mouse Definition
  127. ;
  128. Mouse
  129. (
  130.         Left             (L_UP)          ; Left Button:   Up Directory
  131.  
  132.         LeftMiddle       (LM_DIR)
  133.  
  134.         LeftRight        (LR_COLOR)      ; Left&Right Button Chord
  135.  
  136.         LeftMiddleRight  (LMR_EXIT)
  137.  
  138.         Middle           (M_DN)          ; Middle Button: Down Directory
  139.  
  140.         MiddleRight      (MR_FILE)
  141.  
  142.         Right            (R_CR)          ; Right Button:  Carriage Return
  143.  
  144.         Cursor  (ArrowKeys)
  145. )
  146.  
  147.